home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / glibc108.zip / glibc108 / sysdeps / mach / hurd / start.c < prev    next >
C/C++ Source or Header  |  1994-05-27  |  10KB  |  307 lines

  1. /* Copyright (C) 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3.  
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Library General Public License as
  6. published by the Free Software Foundation; either version 2 of the
  7. License, or (at your option) any later version.
  8.  
  9. The GNU C Library is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12. Library General Public License for more details.
  13.  
  14. You should have received a copy of the GNU Library General Public
  15. License along with the GNU C Library; see the file COPYING.LIB.  If
  16. not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  17. Cambridge, MA 02139, USA.  */
  18.  
  19. #include <errno.h>
  20. #include <stdlib.h>
  21. #include <stdio.h>
  22. #include <string.h>
  23. #include <hurd.h>
  24. #include <hurd/exec.h>
  25. #include <sysdep.h>
  26. #include <hurd/threadvar.h>
  27. #include "set-hooks.h"
  28. #include "hurdmalloc.h"        /* XXX */
  29.  
  30. /* The first piece of initialized data.  */
  31. int __data_start = 0;
  32.  
  33. mach_port_t *_hurd_init_dtable;
  34. mach_msg_type_number_t _hurd_init_dtablesize;
  35.  
  36. unsigned int __hurd_threadvar_max;
  37. unsigned long int __hurd_threadvar_stack_mask;
  38. unsigned long int __hurd_threadvar_stack_offset;
  39.  
  40. /* These are set up by _hurdsig_init.  */
  41. unsigned long int __hurd_sigthread_stack_base;
  42. unsigned long int __hurd_sigthread_stack_end;
  43. unsigned long int *__hurd_sigthread_variables;
  44.  
  45. vm_address_t _hurd_stack_base;
  46. vm_size_t _hurd_stack_size;
  47.  
  48. char **__environ;
  49.  
  50. /* Things that want to be run before _hurd_init or much anything else.
  51.    Importantly, these are called before anything tries to use malloc.  */
  52. DEFINE_HOOK (_hurd_preinit_hook, (void));
  53.  
  54. extern void __mach_init (void);
  55. extern void __libc_init (int argc, char **argv, char **envp);
  56. extern int main (int argc, char **argv, char **envp);
  57.  
  58. void *(*_cthread_init_routine) (void); /* Returns new SP to use.  */
  59. __NORETURN void (*_cthread_exit_routine) (int status);
  60.  
  61. int _hurd_split_args (char *, size_t, char **);
  62.  
  63. /* These communicate values from _start to start1,
  64.    where we cannot use the stack for anything.  */
  65. static char *args, *env;
  66. static mach_port_t *portarray;
  67. static int *intarray;
  68. static mach_msg_type_number_t argslen, envlen, portarraysize, intarraysize;
  69. static int flags;
  70. static char **argv, **envp;
  71. static int argc;
  72.  
  73.  
  74. static __NORETURN void start1 (void);
  75.  
  76.  
  77. /* Entry point.  This is the first thing in the text segment.
  78.  
  79.    The exec server started the initial thread in our task with this spot the
  80.    PC, and a stack that is presumably big enough.  We do basic Mach
  81.    initialization so mig-generated stubs work, and then do an exec_startup
  82.    RPC on our bootstrap port, to which the exec server responds with the
  83.    information passed in the exec call, as well as our original bootstrap
  84.    port, and the base address and size of the preallocated stack.
  85.  
  86.    If using cthreads, we are given a new stack by cthreads initialization and
  87.    deallocate the stack set up by the exec server.  On the new stack we call
  88.    `start1' (above) to do the rest of the startup work.  Since the stack may
  89.    disappear out from under us in a machine-dependent way, we use a pile of
  90.    static variables to communicate the information from exec_startup to start1.
  91.    This is unfortunate but preferable to machine-dependent frobnication to copy
  92.    the state from the old stack to the new one.  */
  93.  
  94. __NORETURN void
  95. _start (void)
  96. {
  97.   error_t err;
  98.   mach_port_t in_bootstrap;
  99.  
  100.   /* Basic Mach initialization, must be done before RPCs can be done.  */
  101.   __mach_init ();
  102.  
  103.   /* Run things that want to do initialization as soon as possible.  We do
  104.      this before exec_startup so that no out of line data arrives and
  105.      clutters up the address space before brk initialization.  */
  106.  
  107.   RUN_HOOK (_hurd_preinit_hook, ());
  108.  
  109.   if (err = __task_get_special_port (__mach_task_self (), TASK_BOOTSTRAP_PORT,
  110.                      &in_bootstrap))
  111.     LOSE;
  112.  
  113.   if (in_bootstrap != MACH_PORT_NULL)
  114.     {
  115.       /* Call the exec server on our bootstrap port and
  116.      get all our standard information from it.  */
  117.  
  118.       argslen = envlen = 0;
  119.       _hurd_init_dtablesize = portarraysize = intarraysize = 0;
  120.  
  121.       err = __exec_startup (in_bootstrap,
  122.                 &_hurd_stack_base, &_hurd_stack_size,
  123.                 &flags,
  124.                 &args, &argslen, &env, &envlen,
  125.                 &_hurd_init_dtable, &_hurd_init_dtablesize,
  126.                 &portarray, &portarraysize,
  127.                 &intarray, &intarraysize);
  128.       __mach_port_deallocate (__mach_task_self (), in_bootstrap);
  129.     }
  130.  
  131.   if (err || in_bootstrap == MACH_PORT_NULL)
  132.     {
  133.       /* Either we have no bootstrap port, or the RPC to the exec server
  134.      failed.  Try to snarf the args in the canonical Mach way.
  135.      Hopefully either they will be on the stack as expected, or the
  136.      stack will be zeros so we don't crash.  Set all our other
  137.      variables to have empty information.  */
  138.  
  139.       /* SNARF_ARGS (ARGC, ARGV, ENVP) snarfs the arguments and environment
  140.      from the stack, assuming they were put there by the microkernel.  */
  141.       SNARF_ARGS (argc, argv, envp);
  142.  
  143.       flags = 0;
  144.       args = env = NULL;
  145.       argslen = envlen = 0;
  146.       _hurd_init_dtable = NULL;
  147.       _hurd_init_dtablesize = 0;
  148.       portarray = NULL;
  149.       portarraysize = 0;
  150.       intarray = NULL;
  151.       intarraysize = 0;
  152.     }
  153.   else
  154.     argv = envp = NULL;
  155.  
  156.  
  157.   /* The user might have defined a value for this, to get more variables.
  158.      Otherwise it will be zero on startup.  We must make sure it is set
  159.      properly before before cthreads initialization, so cthreads can know
  160.      how much space to leave for thread variables.  */
  161.   if (__hurd_threadvar_max < _HURD_THREADVAR_MAX)
  162.     __hurd_threadvar_max = _HURD_THREADVAR_MAX;
  163.  
  164.   /* Do cthreads initialization and switch to the cthread stack.  */
  165.  
  166.   if (_cthread_init_routine != NULL)
  167.     CALL_WITH_SP (start1, (*_cthread_init_routine) ());
  168.   else
  169.     start1 ();
  170.  
  171.   /* Should never get here.  */
  172.   LOSE;
  173. }
  174.  
  175.  
  176. static __NORETURN void
  177. start1 (void)
  178. {
  179.   register int envc = 0;
  180.  
  181.   {
  182.     /* Check if the stack we are now on is different from
  183.        the one described by _hurd_stack_{base,size}.  */
  184.  
  185.     char dummy;
  186.     const vm_address_t newsp = (vm_address_t) &dummy;
  187.  
  188.     if (_hurd_stack_size != 0 && (newsp < _hurd_stack_base ||
  189.                   newsp - _hurd_stack_base > _hurd_stack_size))
  190.       /* The new stack pointer does not intersect with the
  191.      stack the exec server set up for us, so free that stack.  */
  192.       __vm_deallocate (__mach_task_self (),
  193.                _hurd_stack_base, _hurd_stack_size);
  194.   }
  195.  
  196.   if (__hurd_threadvar_stack_mask == 0)
  197.     {
  198.       /* We are not using cthreads, so we will have just a single allocated
  199.      area for the per-thread variables of the main user thread.  */
  200.       unsigned long int i;
  201.       __hurd_threadvar_stack_offset
  202.     = (unsigned long int) malloc (__hurd_threadvar_max *
  203.                       sizeof (unsigned long int));
  204.       if (__hurd_threadvar_stack_offset == 0)
  205.     __libc_fatal ("Can't allocate single-threaded per-thread variables.");
  206.       for (i = 0; i < __hurd_threadvar_max; ++i)
  207.     ((unsigned long int *) __hurd_threadvar_stack_offset)[i] = 0;
  208.     }
  209.  
  210.  
  211.   /* Turn the block of null-separated strings we were passed for the
  212.      arguments and environment into vectors of pointers to strings.  */
  213.       
  214.   if (! argv)
  215.     {
  216.       if (args)
  217.     /* Count up the arguments so we can allocate ARGV.  */
  218.     argc = _hurd_split_args (args, argslen, NULL);
  219.       if (! args || argc == 0)
  220.     {
  221.       /* No arguments passed; set argv to { NULL }.  */
  222.       argc = 0;
  223.       args = NULL;
  224.       argv = (char **) &args;
  225.     }
  226.     }
  227.  
  228.   if (! envp)
  229.     {
  230.       if (env)
  231.     /* Count up the environment variables so we can allocate ENVP.  */
  232.     envc = _hurd_split_args (env, envlen, NULL);
  233.       if (! env || envc == 0)
  234.     {
  235.       /* No environment passed; set __environ to { NULL }.  */
  236.       env = NULL;
  237.       envp = (char **) &env;
  238.     }
  239.     }
  240.  
  241.   if (! argv)
  242.     {
  243.       /* There were some arguments.
  244.      Allocate space for the vectors of pointers and fill them in.  */
  245.       argv = __alloca ((argc + 1) * sizeof (char *));
  246.       _hurd_split_args (args, argslen, argv);
  247.     }
  248.   
  249.   if (! envp)
  250.     {
  251.       /* There was some environment.
  252.      Allocate space for the vectors of pointers and fill them in.  */
  253.       envp = __alloca ((envc + 1) * sizeof (char *));
  254.       _hurd_split_args (env, envlen, envp);
  255.     }
  256.  
  257.   __environ = envp;
  258.  
  259.   if (portarray || intarray)
  260.     /* Initialize library data structures, start signal processing, etc.  */
  261.     _hurd_init (flags, argv, portarray, portarraysize, intarray, intarraysize);
  262.  
  263.   /* Random library initialization.  These functions may assume that
  264.      _hurd_init has already run (if it is going to), and POSIX.1 facilities
  265.      are initialized and available.  */
  266.   __libc_init (argc, argv, __environ);
  267.  
  268.   /* Finally, run the user program.  */
  269.   (_cthread_exit_routine != NULL ? *_cthread_exit_routine : exit)
  270.     (main (argc, argv, __environ));
  271.  
  272.   /* Should never get here.  */
  273.   LOSE;
  274. }
  275.  
  276. /* Split ARGSLEN bytes at ARGS into words, breaking at NUL characters.  If
  277.    ARGV is not a null pointer, store a pointer to the start of each word in
  278.    ARGV[n], and null-terminate ARGV.  Return the number of words split.  */
  279.  
  280. int
  281. _hurd_split_args (char *args, size_t argslen, char **argv)
  282. {
  283.   char *p = args;
  284.   size_t n = argslen;
  285.   int argc = 0;
  286.  
  287.   while (n > 0)
  288.     {
  289.       char *end = memchr (p, '\0', n);
  290.  
  291.       if (argv)
  292.     argv[argc] = p;
  293.       ++argc;
  294.  
  295.       if (end == NULL)
  296.     /* The last argument is unterminated.  */
  297.     break;
  298.  
  299.       n -= end + 1 - p;
  300.       p = end + 1;
  301.     }
  302.  
  303.   if (argv)
  304.     argv[argc] = NULL;
  305.   return argc;
  306. }
  307.